home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-01-06 | 1.4 KB | 49 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="2"
- "COUNT"="1"
- "UIPATH"="Internet\Internet Explorer\Timeouts"
- "NAME"="Receive Timeout"
- "VERSION"="1.00"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Timeout (s)"
- "DESCRIPTION 1"="When IE has sucessfully connected to a webserver, it starts counting until the server closes the connection."
- "DESCRIPTION 2"="If the server does not close the connection, but does also not sent any data, IE will display a "Receive Timeout" after 5 minutes."
- "DESCRIPTION 3"="This timeoutvalue can be configured here."
- "DESCRIPTION 4"="To restore the original settings, clear the field."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"=" "
-
-
- 'sP1="HKCU\Software\Microsoft\InternetExplorer\Styles\MaxScriptStatements"
- sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ReceiveTimeout"
- Sub Plugin_Initialize
- i=RegReadValue(sV1)
- if IsEmpty(i)=false then
- Call SetUIElement(1,i/1000)
- end if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- i=GetUIElement(1)
- if len(i)=0 then
- If RegValueExists(sV1) then
- Call RegDeleteValue(sV1)
- end if
- else
- i=i*1000
- Call RegWriteValue(sV1,i,2)
- end if
-
-
-
- Call Logoff()
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-